home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / usr / share / inkscape / extensions / scour.inkscape.py < prev    next >
Encoding:
Python Source  |  2010-03-12  |  211 b   |  9 lines

  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. import sys
  4. from scour import scourString
  5. input = file(sys.argv[1], "r")
  6. sys.stdout.write(scourString(input.read()).encode("UTF-8"))
  7. input.close()
  8. sys.stdout.close()
  9.